home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / sossnt.zip / SOSSNT / SRC / SOCK.C < prev    next >
C/C++ Source or Header  |  1993-03-03  |  847b  |  48 lines

  1. #include <stdio.h>
  2. #include <fcntl.h>
  3.  
  4. /* Winsock version */
  5. #include <winsock.h>
  6. #include <memory.h>
  7. #include <string.h>
  8. #include <io.h>
  9.  
  10. int Verbose = 0;
  11.  
  12. int talk_start(void);
  13. int talk_daemon(void);
  14. int talk_listen(void);
  15. int talk_connect(char *,char *);
  16. int acceptone(SOCKET);
  17. int doit(char *,SOCKET);
  18.  
  19. #define RCVSIZE 512
  20.  
  21. void
  22. talk_error(char *msg)
  23. {
  24.     fprintf(stderr,"Error: %s. error=%d\n",msg,WSAGetLastError());
  25. }
  26.  
  27. int
  28. sock_start(void)
  29. {
  30.     WSADATA WSAData;
  31.     int err;
  32.  
  33.     /* Even using binmode.obj doesn't set these to BINARY.  Sheesh! */
  34.     _setmode(0,_O_BINARY);
  35.     _setmode(1,_O_BINARY);
  36.     _setmode(2,_O_BINARY);
  37.  
  38.     if ((err = WSAStartup(MAKEWORD(1,0), &WSAData)) != 0) {
  39.         fprintf(stderr, "WSAStartup error - %d\n", err);
  40.         return 1;
  41.     }
  42.     else {
  43.         fprintf(stderr,"%s\n",WSAData.szDescription,
  44.             WSAData.szSystemStatus, MB_OK);
  45.         return 0;
  46.     }
  47. }
  48.